home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 60.zip / BS1 part 60 / Digital Sound Studio d1.adf / Install_DSS8+ < prev    next >
Text File  |  1993-05-13  |  2KB  |  57 lines

  1. ; GVP DSS8+ Install Script
  2. ; Version 1.0
  3. ; Original     by J.W. Lockhart ---- 21 February 1992
  4. ; Re-Write     by Steve Peoples ---- 02 February 1993
  5. ; Final Edits  by Gary Nush -------- 04 May      1993
  6. ; Copyright (c)1993 by Great Valley Products, Inc.
  7.  
  8. ; Written for use with Commodore's Installer, V1.24.
  9.  
  10. ; Some useful variables
  11. (set disklab1a "DSS8Plus")              ; Source disk for new files
  12. (set disklab1b (cat disklab1a ":"))     ; Source disk, with colon
  13. (set disklab2a "Samples")               ; Source disk for new files
  14. (set disklab2b (cat disklab2a ":"))     ; Source disk, with colon
  15.  
  16. (set target @default-dest)
  17.  
  18. ; Ask where to install
  19. (set target (askdir (prompt "Where shall I create the DSS8+ directory?")
  20.                     (help @askdir-help)
  21.                     (default target)
  22.             )
  23. )
  24.  
  25. ; Install DSS8+ Software and Utilities.
  26. (makedir (tackon target ("DSS8Plus")))
  27. (copyfiles (source disklab1b)
  28.            (dest (tackon target "DSS8Plus"))
  29.            (infos) (all)
  30. )
  31.  
  32. ; Install sound player into C:
  33. (copyfiles (source (tackon disklab1b "c"))
  34.            (dest "c:")
  35.            (all) (confirm)
  36.            (prompt "Shall I copy the default sould sample player to C:?")
  37.            (help "This will allow you to play sound samples quickly "
  38.                  "without having to load and run DSS8+.")
  39. )
  40.  
  41. ; Install default sound samples
  42. (askdisk (prompt "Please insert the samples ";
  43.                  "disk, '"disklab2a"' into any drive.")
  44.          (dest disklab2a)
  45.          (help @askdisk-help))
  46.  
  47. (copyfiles (source disklab2b)
  48.            (dest (tackon target "DSS8Plus"))
  49.            (infos) (all)
  50. )
  51.  
  52. (set @default-dest target)
  53.  
  54. (exit 
  55.       "\n"
  56.       "Please don't forget to fill out and mail your Warranty Registration Card!")
  57.